home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
gcc
/
libmat.lha
/
src
/
test.cc
< prev
next >
Wrap
C/C++ Source or Header
|
1980-01-01
|
151b
|
12 lines
#include <matrix.h>
main()
{
Matrix A(4);
Matrix B(4);
A.read();
printf("det=%g\n",det(A));
B=gauss(A);
printf("det=%g\n",det(B));
B.print();
}